fix "Resolve conflicts" dialog not showing up
authorJyrki Gadinger <nilsding@nilsding.org>
Fri, 24 Jan 2025 09:50:51 +0000 (10:50 +0100)
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>
Fri, 24 Jan 2025 14:06:16 +0000 (15:06 +0100)
commite921e969a5da688276f68a6b237cc42abe667441
treeee58b07c87943e1a02e42712c31c41eb95a8efa4
parent0fb6dd4505358222dc13c0bd652b634e9d044faa
fix "Resolve conflicts" dialog not showing up

commit 00b616ba9d92a492b0c4e5101b58fff6506591ef removed the call to
`QScopedPointer::take` as it's considered deprecated in Qt 6.1 and
advises to use `std::unique_ptr` with `release()` instead

--> replace `QScopedPointer` with `std::unique_ptr` and call its
`release()` method as part of the cast to `QQuickWindow*`

Signed-off-by: Jyrki Gadinger <nilsding@nilsding.org>
src/gui/systray.cpp